home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / WINDOWS / NEXT31.ARJ / SETUP.BAT < prev    next >
DOS Batch File  |  1992-06-15  |  1KB  |  45 lines

  1. echo off
  2. cls
  3.  
  4. echo NeXT Application Bar (ver 3.11) Setup Program
  5. echo ---------------------------------------------
  6. if NOT "%2"=="" goto continue
  7. echo Type: SETUP.BAT {your WINDOWS directory} {30 or 31 - version of Windows}
  8. echo For example, if your WINDOWS directory is C:\WINDOWS and the version is
  9. echo 3.1, then you should type:
  10. echo                            SETUP C:\WINDOWS 31
  11.  
  12. goto end
  13.  
  14. :continue
  15. pause
  16. if not exist %1\next3.ini goto cont2
  17. echo Renaming old NEXT3.INI to NEXT3.OLD
  18. ren %1\next3.ini next3.old
  19.  
  20. :cont2
  21. echo Making Directory %1\NEXT
  22. md %1\next
  23. copy nextdll.dll %1
  24. copy next3.hlp %1
  25. if "%2"=="31" goto v31
  26. echo Setting up NeXT for Windows 3.0
  27. copy shell31.dll %1
  28. ren %1\winhelp.exe winhelp.ex~
  29. copy winhelp.exe %1
  30. copy next.w30 %1\NEXT\next.exe
  31. copy next3.i30 %1\next3.ini
  32. goto end
  33.  
  34. :v31
  35. echo Setting up NeXT for Windows 3.1
  36. copy next.w31 %1\NEXT\next.exe
  37. copy next3.i31 %1\next3.ini
  38.  
  39. :end
  40. echo       
  41. echo  
  42. echo Read the file "NEXT3.HLP" for important program information and explanations.
  43. echo ----------------------------------------------------------------------------
  44. echo                                                     Copyright (c), June 1992
  45.